home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / libs / vopl / hershey.lha / hershey / src / Makefile.sgi < prev    next >
Encoding:
Makefile  |  1991-06-17  |  1.4 KB  |  55 lines

  1. #
  2. # Makes the hershey library.
  3. # Makes the binary Hershey font files for an SGI
  4. #
  5. FONTLIB = /usr/local/lib/hershey
  6. CFLAGS = -O -float -DFONTLIB=\"$(FONTLIB)\" -DSGI
  7.  
  8. OURLIBS = libhershey.a
  9. LIBS = -lgl_s
  10. RANLIB = echo
  11.  
  12. .IGNORE:
  13.  
  14. HDR = h2v.h
  15.  
  16. all:    libhershey.a h2v hdisp fdisp fonts
  17.  
  18. libhershey.a: htext.o check.o halloc.o fhtext.o
  19.     ar rcv libhershey.a htext.o check.o halloc.o fhtext.o
  20.     $(RANLIB) libhershey.a
  21.  
  22.  
  23. h2v:    h2v.o getchar.o
  24.     cc -o $@ $@.o getchar.o -lm
  25.  
  26. hdisp:    hdisp.o getchar.o libhershey.a
  27.     cc -o $@ $@.o getchar.o $(OURLIBS) $(LIBS) -lm
  28.  
  29. fdisp:    fdisp.o libhershey.a
  30.     cc -o $@ $@.o $(OURLIBS) $(LIBS) -lm
  31.  
  32. fonts:    h2v
  33.     h2v ../data/hersh.oc
  34.     h2v ../data/hersh.or ../fonts/japan.hmp japanese
  35.     mv astrology cursive cyrillic futura.l futura.m gothic.eng \
  36.     gothic.ger gothic.ita greek japanese markers math.low \
  37.     math.upp meteorology music script symbolic times.g \
  38.     times.i times.ib times.r times.rb $(FONTLIB)
  39.     touch fonts
  40.  
  41. h2v: h2v.h
  42.  
  43. clean:
  44.     rm -f astrology cursive cyrillic futura.l futura.m gothic.eng \
  45.     gothic.ger gothic.ita greek japanese markers math.low \
  46.     math.upp meteorology music script symbolic times.g \
  47.     times.i times.ib times.r times.rb *.o core fonts libhershey.a
  48.  
  49. clobber:
  50.     rm -f astrology cursive cyrillic futura.l futura.m gothic.eng \
  51.     gothic.ger gothic.ita greek japanese markers math.low \
  52.     math.upp meteorology music script symbolic times.g \
  53.     times.i times.ib times.r times.rb *.o core h2v hdisp fdisp fonts \
  54.     libhershey.a
  55.